bit-wise - определение. Что такое bit-wise
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

Что (кто) такое bit-wise - определение

COMPUTER OPERATION THAT OPERATES ON VALUES AT THE LEVEL OF THEIR INDIVIDUAL BITS
Binary and; Bitshift; Bitwise; Bit-shift; Bitwise operations; Bit shift; Bitwise NOT; Bitwise AND; Bitwise operator; Bitwise OR; Bitwise negation; Bitwise operators; Bit wise; Bit complement; Bitwise shift; Bit shifting; Bitwise rotation; Bit rotation; Bitwise logic; Bit operators; Bitwise XOR; Bitwise logical operation; Bitwise logical operator; Bit operation; Bit operator; Binary shift; Right-shift operator; Left-shift operator; Bitwise complement; Binary OR; Binary NOT; Logical bitwise operator; Bitwise Right-Shift; Bitwise xor; Bitwise Operation; Shift (bit); Bitshifts; Binary AND; Bitwise or; Bitwise and; Bitwise not; Bit-wise not; Bit-wise NOT; Bit-wise and; Bit-wise AND; Bit-wise xor; Bit-wise XOR; Bit-wise or; Bit-wise OR; Bit shift operation; Bit shift operations; Bit rotate
  • 4-bit]] integers
  • Bitwise OR of 4-bit integers
  • Left circular shift or rotate
  • Left arithmetic shift
  • Left logical shift
  • Left rotate through carry
  • Right circular shift or rotate
  • Right arithmetic shift
  • Right logical shift
  • Right rotate through carry
  • Bitwise XOR of 4-bit integers
Найдено результатов: 835
wise guy         
WIKIMEDIA DISAMBIGUATION PAGE
Wise Guy; Wise Guys; Wiseguys; Wise guys; Wise guy (disambiguation); Wise Guy (disambiguation); Wise Guys (film); Draft:List of Wiseguy episodes; Wiseguy; Wiseguy (disambiguation)
¦ noun informal
1. chiefly N. Amer. a person who makes sarcastic or impudent remarks so as to demonstrate their cleverness.
2. US a member of the Mafia.
Percy W. Wise         
  • Percy William Wise, caricature by [[John Henry Chinner]]
(1870-1950) ANGLICAN PRIEST
Canon Wise; Percy Wise
The Rev. Percy William Charlton Wise (15 January 1870 – 13 August 1950), commonly referred to as Canon Wise, was an Anglican priest in South Australia.
Wise use movement         
AMERICAN POLITICAL COALITION OF RIGHT-LIBERTARIAN AND ANTI-STATIST ENVIRONMENTALISTS
Wise Use Movement; Wise Use; Wise Use movement; Wise use
The wise use movement in the United States is a loose-knit coalition of groups promoting the expansion of private property rights and reduction of government regulation of publicly held property. This includes advocacy of expanded use by commercial and public interests, seeking increased access to public lands, and often opposition to government intervention.
wise guy         
WIKIMEDIA DISAMBIGUATION PAGE
Wise Guy; Wise Guys; Wiseguys; Wise guys; Wise guy (disambiguation); Wise Guy (disambiguation); Wise Guys (film); Draft:List of Wiseguy episodes; Wiseguy; Wiseguy (disambiguation)
also wiseguy (wise guys)
1.
If you say that someone is a wise guy, you dislike the fact that they think they are very clever and always have an answer for everything. (INFORMAL)
= smart alec
N-COUNT [disapproval]
2.
A wise guy is a member of the Mafia. (mainly AM INFORMAL)
N-COUNT
wiseguy         
WIKIMEDIA DISAMBIGUATION PAGE
Wise Guy; Wise Guys; Wiseguys; Wise guys; Wise guy (disambiguation); Wise Guy (disambiguation); Wise Guys (film); Draft:List of Wiseguy episodes; Wiseguy; Wiseguy (disambiguation)
Roy Wise         
BRITISH POLITICIAN (1901-1974)
Alfred Roy Wise; Alfred Wise
Alfred Roy Wise (7 July 1901 – 21 August 1974) was a British Conservative Party politician and was the Member of Parliament for the constituencies of Rugby and Smethwick .
Bit (horse)         
  • Horse skull showing the large gap between the front teeth and the back teeth. The bit sits in this gap, and extends beyond from side to side.
TYPE OF HORSE TACK
Horse bit; Horse bits; Champing at the bit; Chomping at the bit; Horse's bit; Horsebit
The bit is an item of a horse's tack. It usually refers to the assembly of components that contacts and controls the horse's mouth, and includes the shanks, rings, cheekpads and mullen, all described here below, but it also sometimes simply refers to the mullen, the piece that fits inside the horse's mouth.
Bit-length         
NUMBER OF BINARY DIGITS (BITS), NECESSARY TO REPRESENT AN INTEGER IN THE BINARY NUMBER SYSTEM
Bit length; Bit width
Bit-length or bit width is the number of binary digits, called bits, necessary to represent an integer as a binary number. Formally, the bit-length of a natural number n>0 is a function, bitLength(n), of the binary logarithm of n:
Korey Wise         
AFRICAN AMERICAN ACTIVIST WHO TRAVELS THE UNITED STATES ADVOCATING FOR CRIMINAL JUSTICE REFORM
Corey Wise
Korey Wise (born Kharey Wise, July 26, 1972) is an American activist who travels the United States advocating for criminal justice reform. Wise shares his stories of being wrongfully convicted in the Central Park jogger case (along with Raymond Santana Jr.
Wise River, Montana         
HUMAN SETTLEMENT IN MONTANA, UNITED STATES OF AMERICA
Wise River, MT; Pintler Lake
Wise River is an unincorporated community in northern Beaverhead County, Montana, United States. State Highway 43 runs through the town.

Википедия

Bitwise operation

In computer programming, a bitwise operation operates on a bit string, a bit array or a binary numeral (considered as a bit string) at the level of its individual bits. It is a fast and simple action, basic to the higher-level arithmetic operations and directly supported by the processor. Most bitwise operations are presented as two-operand instructions where the result replaces one of the input operands.

On simple low-cost processors, typically, bitwise operations are substantially faster than division, several times faster than multiplication, and sometimes significantly faster than addition. While modern processors usually perform addition and multiplication just as fast as bitwise operations due to their longer instruction pipelines and other architectural design choices, bitwise operations do commonly use less power because of the reduced use of resources.